﻿.page-banner {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--brand-dark);
}

    .page-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('img/Banner3-1.webp') center/cover;
        filter: brightness(0.25) saturate(0.8);
    }

    .page-banner::after {
        content: '';
        position: absolute;
        inset: 0;
        background: url('img/Banner3-1.webp') center/cover;
    }

.page-banner-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,112,9,0.15);
    border: 1px solid rgba(245,112,9,0.3);
    color: var(--orange-light);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.page-banner h1 {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
}

    .page-banner h1 span {
        color: var(--orange-light);
    }

.page-banner p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    max-width: 550px;
    margin: 14px auto 0;
}

.page-banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    gap: 6px;
}

    .page-banner-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
    }

        .page-banner-dots span.active {
            width: 28px;
            border-radius: 4px;
            background: var(--orange);
        }

/* ============================================
           ABOUT INTRO — SPLIT LAYOUT
           ============================================ */
.about-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image-wrap {
    position: relative;
}

    .intro-image-wrap img {
        width: 100%;
        border-radius: var(--radius-lg);
        display: block;
        box-shadow: var(--shadow-lg);
    }

    .intro-image-wrap::before {
        content: '';
        position: absolute;
        top: -14px;
        left: -14px;
        width: 90px;
        height: 90px;
        border-top: 3px solid var(--orange);
        border-left: 3px solid var(--orange);
        border-radius: var(--radius-lg) 0 0 0;
        z-index: -1;
    }

    .intro-image-wrap::after {
        content: '';
        position: absolute;
        bottom: -14px;
        right: -14px;
        width: 90px;
        height: 90px;
        border-bottom: 3px solid var(--brand);
        border-right: 3px solid var(--brand);
        border-radius: 0 0 var(--radius-lg) 0;
        z-index: -1;
    }

.intro-exp-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--brand);
    color: #fff;
    padding: 16px 22px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 40px rgba(9,32,77,0.35);
}

    .intro-exp-badge .num {
        font-family: 'Barlow', sans-serif;
        font-size: 30px;
        font-weight: 800;
        line-height: 1;
        color: var(--orange-light);
    }

    .intro-exp-badge .label {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.8;
    }

.intro-content h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
    color: var(--brand);
}

    .intro-content h2 span {
        color: var(--orange);
    }

.intro-content p {
    color: var(--text-body);
    margin-bottom: 14px;
    font-size: 15px;
}

.intro-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.intro-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--brand-ghost);
    border: 1px solid var(--border-brand);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    transition: all 0.3s;
}

    .intro-chip:hover {
        border-color: var(--orange);
        background: var(--orange-pale);
        color: var(--orange);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

    .intro-chip i {
        color: var(--orange);
        font-size: 14px;
    }

/* ============================================
           WHY CHOOSE — BENTO GRID
           ============================================ */
.why-section {
    padding: 80px 0;
    background: var(--light-bg);
}

    .why-section .section-header {
        text-align: center;
        margin-bottom: 56px;
    }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    font-family: 'Barlow', sans-serif;
}

    .section-tag::before, .section-tag::after {
        content: '';
        width: 30px;
        height: 2px;
        background: var(--orange);
    }

.section-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--brand);
}

    .section-title span {
        color: var(--orange);
    }

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.why-bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.why-card {
    padding: 30px 26px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

    .why-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--brand), var(--orange));
        transform: scaleX(0);
        transition: transform 0.4s;
    }

    .why-card:hover::after {
        transform: scaleX(1);
    }

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }

    .why-card.featured {
        grid-column: 1 / -1;
        background: var(--brand);
        border-color: transparent;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 30px;
    }

        .why-card.featured::after {
            display: none;
        }

        .why-card.featured:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(9,32,77,0.3);
        }

.why-num {
    font-family: 'Barlow', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--brand-pale);
    line-height: 1;
    margin-bottom: 8px;
}

.why-card.featured .why-num {
    color: rgba(255,255,255,0.1);
    font-size: 56px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 20px;
    transition: all 0.3s;
}

.why-card.featured .why-icon {
    width: 70px;
    height: 70px;
    font-size: 26px;
    background: rgba(255,255,255,0.1);
    color: var(--orange-light);
    border-radius: 16px;
}

.why-card:hover .why-icon {
    background: var(--orange);
    color: #fff;
    transform: rotate(-5deg);
}

.why-card.featured:hover .why-icon {
    background: var(--orange);
    color: #fff;
}

.why-card h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
}

.why-card.featured h3 {
    color: #fff;
    font-size: 20px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.7;
}

.why-card.featured p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    max-width: 500px;
}

.why-card.featured .why-featured-stats {
    display: flex;
    gap: 28px;
}

.why-fs-item {
    text-align: center;
}

.why-fs-num {
    font-family: 'Barlow', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--orange-light);
    line-height: 1;
}

.why-fs-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ============================================
           MISSION VISION — SPLIT CARDS
           ============================================ */
.mv-section {
    padding: 80px 0;
    background: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mv-card {
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

    .mv-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .mv-card.mission {
        background: var(--brand);
    }

    .mv-card.vision {
        background: var(--light-bg);
        border: 1px solid var(--border-light);
    }

    .mv-card::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        pointer-events: none;
    }

    .mv-card.mission::before {
        background: radial-gradient(circle, rgba(245,112,9,0.15), transparent 70%);
    }

    .mv-card.vision::before {
        background: radial-gradient(circle, var(--brand-pale), transparent 70%);
    }

.mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
}

.mv-card.mission .mv-icon {
    background: rgba(255,255,255,0.1);
    color: var(--orange-light);
}

.mv-card.vision .mv-icon {
    background: var(--brand-pale);
    color: var(--brand);
}

.mv-card h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
}

.mv-card.mission h3 {
    color: #fff;
}

.mv-card.vision h3 {
    color: var(--brand);
}

.mv-card p {
    font-size: 15px;
    line-height: 1.8;
    position: relative;
}

.mv-card.mission p {
    color: rgba(255,255,255,0.7);
}

.mv-card.vision p {
    color: var(--text-body);
}

/* ============================================
           STRENGTHS — HORIZONTAL CARDS
           ============================================ */
.strengths-section {
    padding: 80px 0;
    background: var(--brand-dark);
}

    .strengths-section .section-header {
        text-align: center;
        margin-bottom: 56px;
    }

    .strengths-section .section-title {
        color: #fff;
    }

    .strengths-section .section-subtitle {
        color: rgba(255,255,255,0.5);
    }

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.strengths-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--orange-glow), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.strength-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

    .strength-card:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(245,112,9,0.3);
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

.strength-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(245,112,9,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-light);
    font-size: 24px;
    transition: all 0.3s;
}

.strength-card:hover .strength-icon {
    background: var(--orange);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.strength-card h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.strength-card p {
    color: rgba(255,255,255,0.5);
    font-size: 13.5px;
    line-height: 1.7;
}

/* ============================================
           SCROLL REVEAL
           ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal-left.revealed {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal-right.revealed {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal-scale.revealed {
        opacity: 1;
        transform: scale(1);
    }

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.stagger-7 {
    transition-delay: 0.7s;
}

/* ============================================
           RESPONSIVE
           ============================================ */
@media (max-width: 1024px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-bento {
        grid-template-columns: 1fr;
    }

    .why-card.featured {
        grid-template-columns: 1fr;
        text-align: center;
    }

        .why-card.featured .why-featured-stats {
            justify-content: center;
        }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .strengths-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-banner {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .intro-chips {
        gap: 8px;
    }
}
/* ============================================
           PRODUCT HERO
           ============================================ */
.product-hero {
    padding: 70px 0;
    background: var(--white);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery {
    position: relative;
}

.product-main-img {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

    .product-main-img img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s;
    }

    .product-main-img:hover img {
        transform: scale(1.04);
    }

.product-img-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Barlow', sans-serif;
}

.product-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s;
}

    .product-thumb.active, .product-thumb:hover {
        border-color: var(--orange);
        box-shadow: 0 0 0 3px var(--orange-glow);
    }

    .product-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.product-info {
    padding-top: 10px;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-pale);
    color: var(--orange);
    padding: 5px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.product-info h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--brand);
    line-height: 1.25;
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

    .meta-item i {
        color: var(--orange);
        font-size: 14px;
        width: 16px;
        text-align: center;
    }

.product-info .desc {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.product-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .btn-primary:hover {
        background: var(--orange-light);
        box-shadow: var(--shadow-orange);
        transform: translateY(-2px);
    }

.btn-outline {
    padding: 13px 28px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    color: var(--brand);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--white);
}

    .btn-outline:hover {
        border-color: var(--orange);
        color: var(--orange);
        background: var(--orange-pale);
    }

/* ============================================
           FEATURES GRID
           ============================================ */
.features-section {
    padding: 80px 0;
    background: var(--light-bg);
}

    .features-section .section-header {
        text-align: center;
        margin-bottom: 56px;
    }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    font-family: 'Barlow', sans-serif;
}

    .section-tag::before, .section-tag::after {
        content: '';
        width: 30px;
        height: 2px;
        background: var(--orange);
    }

.section-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--brand);
}

    .section-title span {
        color: var(--orange);
    }

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

    .feature-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--brand), var(--orange));
        transform: scaleX(0);
        transition: transform 0.4s;
    }

    .feature-card:hover::after {
        transform: scaleX(1);
    }

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--brand-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 22px;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--orange);
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.feature-card h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.7;
}

/* ============================================
           IMAGE GALLERY — MASONRY
           ============================================ */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

    .gallery-section .section-header {
        text-align: center;
        margin-bottom: 56px;
    }

.gallery-masonry {
    columns: 3;
    column-gap: 16px;
}

    .gallery-masonry .gallery-item {
        break-inside: avoid;
        margin-bottom: 16px;
        border-radius: var(--radius);
        overflow: hidden;
        position: relative;
        cursor: pointer;
    }

        .gallery-masonry .gallery-item img {
            width: 100%;
            display: block;
            transition: transform 0.6s;
        }

        .gallery-masonry .gallery-item:hover img {
            transform: scale(1.06);
        }

    .gallery-masonry .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(9,32,77,0.85) 0%, transparent 55%);
        opacity: 0;
        transition: opacity 0.4s;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        flex-direction: column;
        padding: 20px;
    }

    .gallery-masonry .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

.gallery-overlay .gal-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-masonry .gallery-item:hover .gal-zoom {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-overlay .gal-label {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin-top: 12px;
    transform: translateY(10px);
    transition: transform 0.4s;
}

.gallery-masonry .gallery-item:hover .gal-label {
    transform: translateY(0);
}

/* ============================================
           LIGHTBOX
           ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(6,21,56,0.95);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

    .lightbox.active {
        opacity: 1;
        visibility: visible;
    }

.lightbox-inner {
    max-width: 90%;
    max-height: 85vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-inner {
    transform: scale(1);
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

    .lightbox-close:hover {
        color: var(--orange);
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .lightbox-nav:hover {
        background: var(--orange);
        border-color: var(--orange);
    }

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================
           DETAIL SECTION
           ============================================ */
.detail-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.detail-content h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 16px;
    padding-bottom: 12px;
    position: relative;
}

    .detail-content h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--orange);
    }

.detail-content p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.detail-sidebar {
    position: sticky;
    top: 100px;
}

.spec-card {
    background: var(--brand);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    color: #fff;
    margin-bottom: 24px;
}

    .spec-card h4 {
        font-family: 'Barlow', sans-serif;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .spec-card h4 i {
            color: var(--orange-light);
        }

.spec-list {
    list-style: none;
}

    .spec-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 14px;
    }

        .spec-list li:last-child {
            border-bottom: none;
        }

        .spec-list li .spec-label {
            color: rgba(255,255,255,0.55);
        }

        .spec-list li .spec-value {
            color: #fff;
            font-weight: 600;
        }

.enquiry-card {
    background: var(--orange-pale);
    border: 1px solid rgba(245,112,9,0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

    .enquiry-card h4 {
        font-family: 'Barlow', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--brand);
        margin-bottom: 8px;
    }

    .enquiry-card p {
        color: var(--text-muted);
        font-size: 13px;
        margin-bottom: 16px;
    }

    .enquiry-card .btn-primary {
        width: 100%;
        justify-content: center;
    }

/* ============================================
           PROCESS SECTION
           ============================================ */
.process-section {
    padding: 80px 0;
    background: var(--brand-dark);
    position: relative;
    overflow: hidden;
}

    .process-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--orange-glow), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .process-section .section-header {
        text-align: center;
        margin-bottom: 56px;
        position: relative;
        z-index: 1;
    }

    .process-section .section-title {
        color: #fff;
    }

    .process-section .section-subtitle {
        color: rgba(255,255,255,0.5);
    }

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

    .process-step:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(245,112,9,0.3);
        transform: translateY(-6px);
    }

.process-num {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    background: rgba(245,112,9,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-light);
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.3s;
}

.process-step:hover .process-num {
    background: var(--orange);
    color: #fff;
    transform: scale(1.1);
}

.process-step h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.process-step p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.7;
}

/* ============================================
           CTA SECTION
           ============================================ */
.cta-section {
    padding: 70px 0;
    background: var(--light-bg);
    border-top: 1px solid var(--border-light);
}

.cta-inner {
    text-align: center;
}

    .cta-inner h2 {
        font-family: 'Barlow', sans-serif;
        font-size: clamp(24px, 3vw, 34px);
        font-weight: 800;
        color: var(--brand);
        margin-bottom: 12px;
    }

        .cta-inner h2 span {
            color: var(--orange);
        }

    .cta-inner p {
        color: var(--text-muted);
        font-size: 16px;
        max-width: 550px;
        margin: 0 auto 28px;
    }

/* ============================================
           SCROLL REVEAL
           ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal-left.revealed {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal-right.revealed {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal-scale.revealed {
        opacity: 1;
        transform: scale(1);
    }

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.15s;
}

.stagger-3 {
    transition-delay: 0.2s;
}

.stagger-4 {
    transition-delay: 0.25s;
}

.stagger-5 {
    transition-delay: 0.3s;
}

.stagger-6 {
    transition-delay: 0.35s;
}

.stagger-7 {
    transition-delay: 0.4s;
}

.stagger-8 {
    transition-delay: 0.45s;
}

/* ============================================
           RESPONSIVE
           ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
    }

    .product-main-img img {
        height: 300px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }

    

    .gallery-masonry {
        columns: 2;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        columns: 1;
    }

    .product-thumbs {
        justify-content: center;
    }

    .product-cta-row {
        flex-direction: column;
    }

        .product-cta-row a {
            text-align: center;
            justify-content: center;
        }
}
/* Wrapper for the 2-column layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 30px;
    background: white;
    padding: 40px;
}

/* --- Left Column: Contact Details & Map --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .info-item .icon {
        font-size: 24px;
        color: #0056b3;
        width: 50px;
        height: 50px;
        background: #e7f0fb;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .info-item h3 {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .info-item p {
        color: #666;
        font-size: 15px;
    }

/* Map Styling */
.map-container {
    margin-top: 10px;
    width: 100%;
    height: 800px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #eee;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* --- Right Column: Query Form --- */
.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

.submit-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #004494;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        padding: 20px;
    }
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

    .form-header h2 {
        color: #333;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

.control-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #4e73df;
        box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    }

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #2e59d9;
        border-color: #2653d4;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Notification Popup Styles */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .notification-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.notification-popup {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s;
}

.notification-overlay.show .notification-popup {
    transform: scale(1);
}

.notification-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.notification-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.notification-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.close-notification {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .close-notification:hover {
        background-color: #2e59d9;
    }

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.required-field {
    color: #e74a3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.additional-info {
    margin-top: 30px;
}

.info-item {
    margin-bottom: 10px;
}
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}

    .gallery-item img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
        transition: transform 0.7s ease, filter 0.5s ease;
        filter: brightness(0.75) saturate(0.85);
    }

    .gallery-item:hover img {
        transform: scale(1.08);
        filter: brightness(1) saturate(1);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gal-zoom {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.gallery-item:hover .gal-zoom {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 20px rgba(249,85,0,0.4);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

    .lightbox.active {
        opacity: 1;
        visibility: visible;
    }

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

    .lightbox-inner img {
        max-width: 100%;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 12px;
        display: block;
    }

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .lightbox-close:hover {
        background: var(--orange);
        border-color: var(--orange);
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .lightbox-nav:hover {
        background: var(--orange);
        border-color: var(--orange);
    }

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    text-align: center;
    margin-top: 16px;
    color: var(--text-40);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 240px !important;
    }

    .gallery-overlay {
        opacity: 1;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
}/* ============================================
   RADIAL ENGINEERS — COMPLETE STYLESHEET
   Color palette based on logo #09204D
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand: #09204D;
    --brand-dark: #061538;
    --brand-mid: #0c2a66;
    --brand-light: #133a82;
    --brand-pale: #e8eef8;
    --brand-ghost: #f0f4fa;
    --orange: #f57009;
    --orange-light: #ff8c33;
    --orange-glow: rgba(245, 112, 9, 0.25);
    --orange-pale: #fff4eb;
    --white: #ffffff;
    --light-bg: #f7f9fc;
    --light-card: #ffffff;
    --text-dark: #1a1a2e;
    --text-body: #4a5568;
    --text-muted: #718096;
    --border-light: #e2e8f0;
    --border-brand: rgba(9, 32, 77, 0.12);
    --shadow-sm: 0 2px 8px rgba(9, 32, 77, 0.06);
    --shadow-md: 0 8px 30px rgba(9, 32, 77, 0.1);
    --shadow-lg: 0 20px 60px rgba(9, 32, 77, 0.15);
    --shadow-orange: 0 8px 30px rgba(245, 112, 9, 0.25);
    --radius: 14px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    background: var(--light-bg);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.7;
}


/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

    #preloader.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.loader-wrap {
    text-align: center;
}

    .loader-wrap img {
        height: 48px;
        margin-bottom: 20px;
        animation: pulse 1.2s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--brand), var(--orange));
    border-radius: 3px;
    animation: loadBar 1.5s ease-in-out forwards;
}

@keyframes loadBar {
    to {
        width: 100%;
    }
}


/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--brand-dark);
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1001;
}

    .top-bar .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .top-bar a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s;
    }

        .top-bar a:hover {
            color: var(--orange);
        }

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar i {
    color: var(--orange);
    margin-right: 6px;
    font-size: 12px;
}


/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

    .main-header.scrolled {
        box-shadow: var(--shadow-md);
    }

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}

.logo img {
    height: 48px;
    width: auto;
    transition: transform 0.3s;
}

    .logo img:hover {
        transform: scale(1.05);
    }


/* ============================================
   NAVIGATION
   ============================================ */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
}

    .nav-menu > li {
        position: relative;
    }

        .nav-menu > li > a {
            color: var(--brand);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 5px;
            border-radius: 8px;
            transition: all 0.3s;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            font-family: 'Barlow', sans-serif;
        }

            .nav-menu > li > a:hover,
            .nav-menu > li.active > a {
                color: var(--orange);
                background: var(--orange-pale);
            }

            .nav-menu > li > a .arrow {
                font-size: 10px;
                transition: transform 0.3s;
            }

        .nav-menu > li:hover > a .arrow {
            transform: rotate(180deg);
        }


/* ============================================
   DROPDOWN MENU
   ============================================ */
.dropdown {
    position: absolute;
    top: calc(100% + 9px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    min-width: 400px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

    .dropdown::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 16px;
        height: 16px;
        background: var(--white);
        border-left: 1px solid var(--border-light);
        border-top: 1px solid var(--border-light);
    }

.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 16px;
    color: var(--text-body);
    text-decoration: none;
    font-size: 13.5px;
    border-radius: 10px;
    transition: all 0.25s;
    line-height: 1.4;
}

    .dropdown a:hover {
        background: var(--orange-pale);
        color: var(--orange);
        transform: translateX(4px);
    }

    .dropdown a .dd-icon {
        width: 38px;
        height: 38px;
        background: var(--brand-pale);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand);
        font-size: 14px;
        flex-shrink: 0;
        transition: all 0.25s;
    }

    .dropdown a:hover .dd-icon {
        background: var(--orange);
        color: #fff;
    }


/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--orange);
    color: #fff;
    padding: 11px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
        transform: translateX(-100%);
        transition: transform 0.6s;
    }

    .btn-primary:hover::before {
        transform: translateX(100%);
    }

    .btn-primary:hover {
        background: var(--orange-light);
        box-shadow: var(--shadow-orange);
        transform: translateY(-2px);
    }

.btn-outline-hero {
    padding: 12px 28px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .btn-outline-hero:hover {
        border-color: var(--orange);
        color: var(--orange);
        background: rgba(245, 112, 9, 0.08);
    }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--brand);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}


/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero-carousel {
    position: relative;
    height: 92vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

    .carousel-slide .slide-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        filter: brightness(0.35) saturate(1.1);
        transform: scale(1.05);
        transition: transform 8s ease-out;
    }

    .carousel-slide.active .slide-bg {
        transform: scale(1);
    }

    .carousel-slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(9,32,77,0.92) 0%, rgba(9,32,77,0.5) 50%, rgba(9,32,77,0.75) 100%);
    }

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 112, 9, 0.15);
    border: 1px solid rgba(245, 112, 9, 0.35);
    color: var(--orange-light);
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s 0.2s;
}

.carousel-slide.active .slide-tag {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s 0.35s;
}

.carousel-slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-title span {
    color: var(--orange-light);
}

.slide-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s 0.5s;
}

.carousel-slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
}

.slide-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s 0.65s;
}

.carousel-slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 14px;
}

.carousel-btn {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .carousel-btn:hover {
        background: var(--orange);
        border-color: var(--orange);
        transform: scale(1.1);
    }

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

    .carousel-dot.active {
        width: 60px;
        background: rgba(255, 255, 255, 0.12);
    }

        .carousel-dot.active::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 0;
            background: var(--orange);
            border-radius: 4px;
            animation: dotFill 5s linear forwards;
        }

@keyframes dotFill {
    to {
        width: 100%;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: floatUp 2s ease-in-out infinite;
}

    .scroll-indicator .mouse {
        width: 24px;
        height: 38px;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 12px;
        position: relative;
    }

        .scroll-indicator .mouse::after {
            content: '';
            width: 3px;
            height: 8px;
            background: var(--orange);
            border-radius: 3px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 1.5s ease-in-out infinite;
        }

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.h-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.25;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.25;
    }

    90% {
        opacity: 0.25;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}


/* ============================================
   COMMON SECTION STYLES
   ============================================ */
section {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    font-family: 'Barlow', sans-serif;
}

    .section-tag::before,
    .section-tag::after {
        content: '';
        width: 30px;
        height: 2px;
        background: var(--orange);
    }

.section-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--brand);
}

    .section-title span {
        color: var(--orange);
    }

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Dark section header variant */
.section-dark .section-title {
    color: #fff;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}


/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal-left.revealed {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal-right.revealed {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal-scale.revealed {
        opacity: 1;
        transform: scale(1);
    }

/* Stagger Delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}


/* ============================================
   ABOUT SECTION (WHITE)
   ============================================ */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

    .about-image-wrap img {
        width: 100%;
        border-radius: var(--radius-lg);
        display: block;
        box-shadow: var(--shadow-lg);
    }

    .about-image-wrap::before {
        content: '';
        position: absolute;
        top: -14px;
        left: -14px;
        width: 100px;
        height: 100px;
        border-top: 3px solid var(--orange);
        border-left: 3px solid var(--orange);
        border-radius: var(--radius-lg) 0 0 0;
        z-index: -1;
    }

    .about-image-wrap::after {
        content: '';
        position: absolute;
        bottom: -14px;
        right: -14px;
        width: 100px;
        height: 100px;
        border-bottom: 3px solid var(--brand);
        border-right: 3px solid var(--brand);
        border-radius: 0 0 var(--radius-lg) 0;
        z-index: -1;
    }

.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: 24px;
    background: var(--brand);
    color: #fff;
    padding: 18px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 40px rgba(9, 32, 77, 0.35);
}

    .about-exp-badge .num {
        font-family: 'Barlow', sans-serif;
        font-size: 34px;
        font-weight: 800;
        line-height: 1;
        color: var(--orange-light);
    }

    .about-exp-badge .label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.8;
    }

.about-content h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
    color: var(--brand);
}

    .about-content h2 span {
        color: var(--orange);
    }

.about-content p {
    color: var(--text-body);
    margin-bottom: 16px;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--brand-ghost);
    border: 1px solid var(--border-brand);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand);
    transition: all 0.3s;
}

    .about-feature:hover {
        border-color: var(--orange);
        background: var(--orange-pale);
        color: var(--orange);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

    .about-feature i {
        color: var(--orange);
        font-size: 15px;
    }


/* ============================================
   PRODUCTS SECTION (LIGHT GRAY)
   ============================================ */
.products-section {
    background: var(--light-bg);
    position: relative;
}

    .products-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--brand), var(--orange), var(--brand));
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--orange), var(--orange-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
        z-index: 2;
    }

    .product-card:hover::before {
        transform: scaleX(1);
    }

    .product-card:hover {
        transform: translateY(-8px);
        border-color: transparent;
        box-shadow: var(--shadow-lg);
    }

.product-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .product-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s;
    }

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-img .product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 32, 77, 0.6), transparent 60%);
}

.product-card-body {
    padding: 24px;
}

    .product-card-body .product-icon {
        width: 46px;
        height: 46px;
        background: var(--brand-pale);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand);
        font-size: 18px;
        margin-bottom: 14px;
        transition: all 0.3s;
    }

.product-card:hover .product-icon {
    background: var(--orange);
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.product-card-body h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--brand);
    transition: color 0.3s;
}

.product-card:hover .product-card-body h3 {
    color: var(--orange);
}

.product-card-body p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-link {
    color: var(--orange);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .product-link:hover {
        gap: 12px;
    }


/* ============================================
   STATS SECTION (DARK BRAND)
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-mid) 100%);
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: -40%;
        right: -15%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--orange-glow), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .stats-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255,255,255,0.03), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

    .stat-card:hover {
        border-color: rgba(245, 112, 9, 0.4);
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(245, 112, 9, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-light);
    font-size: 24px;
    transition: all 0.3s;
}

.stat-card:hover .stat-icon {
    background: var(--orange);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.stat-number {
    font-family: 'Barlow', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}


/* ============================================
   WHY CHOOSE US SECTION (WHITE)
   ============================================ */
.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

    .why-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--brand), var(--orange));
        transform: scaleX(0);
        transition: transform 0.4s;
    }

    .why-card:hover::after {
        transform: scaleX(1);
    }

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }

.why-num {
    font-family: 'Barlow', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--brand-pale);
    line-height: 1;
    margin-bottom: 10px;
}

.why-card:hover .why-num {
    color: var(--orange-pale);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.why-card:hover .why-icon {
    background: var(--orange);
    color: #fff;
    transform: rotate(-5deg);
}

.why-card h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* ============================================
   GALLERY SECTION (LIGHT GRAY)
   ============================================ */
.gallery-section {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s;
        min-height: 200px;
    }

    .gallery-item:nth-child(1) img {
        min-height: 100%;
    }

    .gallery-item .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(9, 32, 77, 0.85) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.4s;
        display: flex;
        align-items: flex-end;
        padding: 20px;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(10px);
    transition: transform 0.4s;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay i {
    transform: translate(-50%, -50%) scale(1);
}


/* ============================================
   CTA SECTION (DARK BRAND)
   ============================================ */
.cta-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('https://picsum.photos/seed/industrial-cta-blue/1600/500.jpg') center/cover;
        filter: brightness(0.25) saturate(0.8);
    }

    .cta-section::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(9, 32, 77, 0.85), rgba(6, 21, 56, 0.9));
    }

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .cta-inner h2 {
        font-family: 'Barlow', sans-serif;
        font-size: clamp(24px, 3.5vw, 38px);
        font-weight: 800;
        margin-bottom: 14px;
        color: #fff;
    }

    .cta-inner p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 17px;
        max-width: 600px;
        margin: 0 auto 32px;
    }


/* ============================================
   CONTACT SECTION (WHITE)
   ============================================ */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: all 0.3s;
}

    .contact-info-card:hover {
        border-color: var(--orange);
        transform: translateX(6px);
        box-shadow: var(--shadow-sm);
    }

    .contact-info-card .cic-icon {
        width: 48px;
        height: 48px;
        background: var(--brand-pale);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand);
        font-size: 18px;
        flex-shrink: 0;
        transition: all 0.3s;
    }

    .contact-info-card:hover .cic-icon {
        background: var(--orange);
        color: #fff;
    }

    .contact-info-card h4 {
        font-family: 'Barlow', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: var(--brand);
        margin-bottom: 4px;
    }

    .contact-info-card p,
    .contact-info-card a {
        color: var(--text-muted);
        font-size: 14px;
        text-decoration: none;
        line-height: 1.5;
    }

        .contact-info-card a:hover {
            color: var(--orange);
        }

/* Contact Form */
.contact-form-wrap {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
}

    .contact-form-wrap h3 {
        font-family: 'Barlow', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--brand);
        margin-bottom: 24px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        color: var(--brand);
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px 16px;
        background: var(--white);
        border: 1.5px solid var(--border-light);
        border-radius: 10px;
        color: var(--text-dark);
        font-size: 14px;
        font-family: 'Heebo', sans-serif;
        transition: all 0.3s;
        outline: none;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 3px var(--orange-glow);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-group select option {
        background: var(--white);
    }

.btn-submit {
    width: 100%;
    padding: 14px 28px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn-submit:hover {
        background: var(--brand-mid);
        box-shadow: 0 6px 25px rgba(9, 32, 77, 0.3);
        transform: translateY(-2px);
    }

.form-toast {
    display: none;
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

    .form-toast.success {
        display: block;
        background: #ecfdf5;
        border: 1px solid #a7f3d0;
        color: #065f46;
    }


/* ============================================
   FOOTER (DARK BRAND)
   ============================================ */
.main-footer {
    background: var(--brand-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .footer-socials a {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 15px;
        transition: all 0.3s;
    }

        .footer-socials a:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: #fff;
            transform: translateY(-3px);
        }

.footer-col h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--orange);
    }

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

            .footer-col ul li a:hover {
                color: var(--orange);
                transform: translateX(4px);
            }

/* Footer Bottom — two sections */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

    .footer-copyright a {
        color: var(--orange);
        text-decoration: none;
    }

.footer-logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .footer-logos a {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: all 0.3s;
    }

        .footer-logos a:hover {
            border-color: var(--orange);
            color: var(--orange);
            background: rgba(245, 112, 9, 0.08);
        }

        .footer-logos a img {
            height: 22px;
            width: auto;
        }


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(9, 32, 77, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        transform: translateY(-4px);
        background: var(--orange);
        box-shadow: var(--shadow-orange);
    }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--border-light);
        overflow-y: auto;
        z-index: 2000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }

        .nav-menu.open {
            right: 0;
        }

        .nav-menu > li > a {
            padding: 14px 0;
            font-size: 15px;
            color: var(--brand);
        }

    .dropdown {
        position: static;
        transform: none;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        display: none;
        background: var(--light-bg);
        border: none;
        padding: 8px 0;
        box-shadow: none;
    }

        .dropdown::before {
            display: none;
        }

    .nav-menu > li.dropdown-open .dropdown {
        display: block;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1999;
    }

        .mobile-overlay.active {
            display: block;
        }

    .header-cta .btn-primary {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .carousel-controls {
        right: 20px;
        bottom: 20px;
    }

    .carousel-dots {
        left: 20px;
        bottom: 20px;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-carousel {
        height: 80vh;
        min-height: 500px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-logos {
        flex-direction: column;
        gap: 10px;
    }
}

/* Mobile close button inside nav */
.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--brand);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}
/* ============================================
           BENTO GRID
           ============================================ */
.bento-section {
    padding: 60px 0 80px;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 20px;
}

/* --- Advantages (left, 3 rows) --- */
.cell-advantages {
    grid-column: 1;
    grid-row: 1 / 4;
    background: var(--brand-ghost);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

    .cell-advantages h3 {
        font-family: 'Barlow', sans-serif;
        font-size: 20px;
        font-weight: 800;
        color: var(--brand);
        margin-bottom: 24px;
        line-height: 1.3;
    }

.advantage-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-20px);
}

    .advantage-item:last-child {
        border-bottom: none;
    }

    .advantage-item:hover {
        padding-left: 8px;
    }

    .advantage-item.show {
        opacity: 1;
        transform: translateX(0);
    }

.adv-check {
    width: 28px;
    height: 28px;
    background: var(--orange-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s;
}

.advantage-item:hover .adv-check {
    background: var(--orange);
    color: #fff;
    transform: scale(1.1);
}

.adv-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
    font-weight: 500;
}

/* --- Main Image (center, 3 rows) --- */
.cell-image {
    grid-column: 2;
    grid-row: 1 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 520px;
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .cell-image.show {
        opacity: 1;
        transform: scale(1);
    }

    .cell-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 6s ease-out;
    }

    .cell-image:hover img {
        transform: scale(1.05);
    }

    .cell-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(9,32,77,0.5) 0%, transparent 40%);
        pointer-events: none;
    }

.image-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(245,112,9,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    padding-left: 4px;
    box-shadow: 0 0 0 12px rgba(245,112,9,0.2), 0 10px 40px rgba(245,112,9,0.3);
    transition: all 0.3s;
    animation: playPulse 2.5s ease-in-out infinite;
}

    .image-play-btn:hover {
        transform: translate(-50%, -50%) scale(1.12);
        box-shadow: 0 0 0 18px rgba(245,112,9,0.15), 0 15px 50px rgba(245,112,9,0.35);
    }

@keyframes playPulse {
    0%, 100% {
        box-shadow: 0 0 0 12px rgba(245,112,9,0.2), 0 10px 40px rgba(245,112,9,0.3);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(245,112,9,0.08), 0 10px 40px rgba(245,112,9,0.3);
    }
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}

    .image-badge i {
        color: var(--orange);
        font-size: 18px;
    }

    .image-badge span {
        font-size: 12px;
        font-weight: 700;
        color: var(--brand);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/* --- Description (top right) --- */
.cell-desc {
    grid-column: 3;
    grid-row: 1;
    background: var(--brand);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    color: rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

    .cell-desc.show {
        opacity: 1;
        transform: translateX(0);
    }

    .cell-desc::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(245,112,9,0.2), transparent 70%);
        border-radius: 50%;
    }

    .cell-desc h4 {
        font-family: 'Barlow', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
        line-height: 1.3;
        position: relative;
    }

    .cell-desc p {
        font-size: 13.5px;
        line-height: 1.7;
        position: relative;
    }

.desc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    position: relative;
}

.desc-tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

    .desc-tag:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
    }

/* --- Progress Rings (right, 2 rows) --- */
.cell-progress {
    grid-column: 3;
    grid-row: 2 / 4;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

    .cell-progress.show {
        opacity: 1;
        transform: translateX(0);
    }

    .cell-progress h4 {
        font-family: 'Barlow', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: var(--brand);
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
    }

.progress-rings {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.ring-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

    .ring-item.show {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

.ring-svg {
    width: 100px;
    height: 100px;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: var(--border-light);
    stroke-width: 8;
}

.ring-fill {
    fill: none;
    stroke: var(--orange);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ring-value {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--brand);
    margin-top: 8px;
    line-height: 1;
}

.ring-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.3;
    max-width: 100px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* --- Testimonial (full width bottom) --- */
.cell-testimonial {
    grid-column: 1 / -1;
    grid-row: 4;
    background: var(--brand-ghost);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

    .cell-testimonial.show {
        opacity: 1;
        transform: translateY(0);
    }

    .cell-testimonial::before {
        content: '\201C';
        position: absolute;
        top: -10px;
        left: 30px;
        font-size: 160px;
        font-family: Georgia, serif;
        color: var(--brand-pale);
        line-height: 1;
        pointer-events: none;
    }

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    border: 3px solid var(--orange);
    box-shadow: var(--shadow-orange);
}

    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-body {
    position: relative;
    z-index: 1;
    flex: 1;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--brand);
    font-size: 14px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-top: 8px;
}

    .testimonial-stars i {
        color: var(--orange);
        font-size: 13px;
    }

/* ============================================
           VIDEO MODAL
           ============================================ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(6,21,56,0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

    .video-modal.active {
        opacity: 1;
        visibility: visible;
    }

.video-modal-inner {
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-modal.active .video-modal-inner {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

    .video-modal-close:hover {
        color: var(--orange);
    }

.video-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

    .video-placeholder i {
        font-size: 48px;
        display: block;
        margin-bottom: 12px;
        color: var(--orange);
    }

/* ============================================
           RESPONSIVE
           ============================================ */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
    }

    .cell-advantages {
        grid-column: 1;
        grid-row: 1;
    }

    .cell-image {
        grid-column: 2;
        grid-row: 1 / 3;
        min-height: 400px;
    }

    .cell-desc {
        grid-column: 1;
        grid-row: 2;
    }

    .cell-progress {
        grid-column: 1 / -1;
        grid-row: 3;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cell-testimonial {
        grid-column: 1 / -1;
        grid-row: 4;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .cell-advantages,
    .cell-image,
    .cell-desc,
    .cell-progress,
    .cell-testimonial {
        grid-column: 1;
        grid-row: auto;
    }

    .cell-image {
        min-height: 280px;
    }

    .cell-testimonial {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }

        .cell-testimonial::before {
            left: 50%;
            transform: translateX(-50%);
            font-size: 100px;
        }

    .progress-rings {
        gap: 16px;
    }

    .ring-svg {
        width: 85px;
        height: 85px;
    }
}

@media (max-width: 480px) {
    .ring-svg {
        width: 75px;
        height: 75px;
    }

    .ring-value {
        font-size: 18px;
    }

    .cell-advantages {
        padding: 24px 20px;
    }

    .cell-desc {
        padding: 24px 20px;
    }

    .cell-progress {
        padding: 24px 20px;
    }
}